home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
music
/
omdpt123.lha
/
OMED_PT123.lzx
/
rexx
/
DelDragUp.omed
< prev
next >
Wrap
Text File
|
1979-08-05
|
413b
|
16 lines
/* Delete the ranged notes and drag the following up - Case 04-11-95 */
address OCTAMED_REXX
options results
'op_update off'
'rn_getrangestartline'; rnstartline = result
'rn_getrangeendline'; rnendline = result
length = rnendline - rnstartline
length = length + 1
'ed_getcurrline'; currline = result
'ed_deletenote line' rnstartline 'delspace' length
'ed_goto line' rnstartline
'rn_cancelrange'
'op_update on'